home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / batmen.zip / BATDEMO.BAT next >
DOS Batch File  |  1989-06-28  |  1KB  |  55 lines

  1. @echo off
  2. batmen -t "Welcome to BatMenu" -k "*intro 1" 0 0 24 80
  3. batmen -t "Welcome to BatMenu" -k "*intro 2" 3 3 18 74
  4. batmen -t "Shareware is Great!" -k "*intro 3" 4 16 16 38
  5. batmen -t "Shareware is Great!" -k "*intro 4" 4 16 16 49
  6. batmen -t "Titles are Optional" -l 8 -k "*menu1" 4 16 11 46
  7. if errorlevel 9 goto nine
  8. if errorlevel 8 goto eight
  9. if errorlevel 7 goto seven
  10. if errorlevel 6 goto six
  11. if errorlevel 5 goto five
  12. if errorlevel 4 goto four
  13. if errorlevel 3 goto three
  14. if errorlevel 2 goto two
  15. if errorlevel 1 goto one
  16. if errorlevel 0 goto zero
  17. goto next
  18. :nine
  19. echo You chose selection nine
  20. goto next
  21. :eight
  22. echo You chose selection eight
  23. goto next
  24. :seven
  25. echo You chose selection seven
  26. goto next
  27. :six
  28. echo You chose selection six
  29. goto next
  30. :five
  31. echo You chose selection five
  32. goto next
  33. :four
  34. echo You chose selection four
  35. goto next
  36. :three
  37. echo You chose selection three
  38. goto next
  39. :two
  40. echo You chose selection two
  41. goto next
  42. :one
  43. echo You chose selection one
  44. goto next
  45. :zero
  46. echo You chose selection zero
  47. :next
  48. pause
  49. batmen -l 8 -k "*menu2" 4 16 9 46
  50. batmen -k "*menu3" 0 50 11 12
  51. batmen -t "Please Support Shareware!" -k "*menu4" 4 5 11 75
  52. if errorlevel 9 goto end
  53. batmen -c -t "Please Support Shareware!" -k "*menu5" 1 2 22 75
  54. :end
  55.